home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / UNARJ230.ARJ / QCLUNARJ.MAK < prev    next >
Makefile  |  1991-08-26  |  304b  |  17 lines

  1. # Makefile for unarj.exe for QuickC QCL
  2.  
  3. CC=qcl -AS -W4
  4.  
  5. all:          unarj.exe
  6.  
  7. unarj.obj:    unarj.c    unarj.h
  8.  
  9. environ.obj:  environ.c unarj.h
  10.  
  11. decode.obj:   decode.c    unarj.h
  12.  
  13. unarj.exe:    unarj.obj decode.obj environ.obj
  14.        qcl    unarj.obj decode.obj environ.obj
  15.  
  16. # end of makefile
  17.